home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / renamr.zip / TESTC1.C < prev    next >
Text File  |  1991-08-31  |  533b  |  9 lines

  1. int     TESTC1( ) /*** TESTC1.C - SAMPLE FOR DEMONSTRATING RENAMER    */
  2. {  int   iStatus, iRC = 0;          /* The iStatus reference is not   */
  3.    int   my_Routine ( int );        /* changed since ReNamer only     */
  4.    int   Alpha, Stat;               /* transforms whole symbols.      */
  5.    Alpha = 5;
  6.    Stat = my_Routine ( Alpha * 4 ); /* STAT - NOTE: This comment will */
  7.    return( iRC );                   /* not be changed since the case  */
  8. }                                   /* doesn't match.                 */
  9.